SchedulerQueue class¶
Defined in
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.dll
Full name: System.Reactive.Concurrency.SchedulerQueue<T>
Modifiers: public
Summary¶
Efficient scheduler queue that maintains scheduled items sorted by absolute time.
Applies to
netstandard2.0
Remarks¶
This type is not thread safe; users should ensure proper synchronization.
Constructors¶
| Name | Summary |
|---|---|
| .ctor | Creates a new scheduler queue with a default initial capacity. |
Properties¶
| Name | Summary |
|---|---|
| Count | Gets the number of scheduled items in the scheduler queue. |
Methods¶
| Name | Summary |
|---|---|
| Enqueue | Enqueues the specified work item to be scheduled. |
| Remove | Removes the specified work item from the scheduler queue. |
| Dequeue | Dequeues the next work item from the scheduler queue. |
| Peek | Peeks the next work item in the scheduler queue. |